home *** CD-ROM | disk | FTP | other *** search
- this.stop();
- wait_cnt = 30 + Math.floor(Math.random() * 20);
- phase = 0;
- phase0 = 0;
- phase1 = 0;
- a = 0;
- this.onEnterFrame = function()
- {
- wait_cnt -= 1;
- if(wait_cnt < 0)
- {
- lineMC.clear();
- phase = Math.floor(Math.random() * 2);
- a = Math.floor(Math.random() * 4);
- if(a == 1)
- {
- _root.enemy.robo.gotoAndPlay("gun");
- gotoAndStop(16);
- }
- else if(phase == 0)
- {
- phase0 = 1;
- _root.enemy.robo.gotoAndPlay("laser");
- gotoAndStop(23);
- }
- else
- {
- phase1 = 1;
- _root.enemy.robo.gotoAndPlay("hadou");
- gotoAndStop(38);
- }
- }
- };
-